home *** CD-ROM | disk | FTP | other *** search
- /*pascal format string functions written by and property of: Eric J. Hayes*/
- /*non-profit use of this header must be accompanyed by a credit to myself.*/
- /*sale of all or any part of this header or it's library prohibited without*/
- /*written permission of myself */
- /* ®1987-1991 Eric J. Hayes*/
-
-
- #pragma mark PROTOS
- void pStrCpy(char*,char*);
- void pStrCat(char*,char*);
- void pRightJust(char*,short);
- short pStrCmp(char*,char*,short,short,short);
-
-
- /*pStrCmp calling modes*/
- #define str_equals 1
- #define str_contains 2
- #define str_starts 3
- #define str_ends 4
-
-
- /*return codes*/
- #ifndef _GOODBAD_
- #define _GOODBAD_
- #define GOOD 1
- #define BAD 0
- #endif